[DEPRECATED] Use form field endpoints instead. Delete a specific custom field by id
curl --request DELETE \
--url https://api.rootly.com/v1/custom_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "128",
"type": "custom_fields",
"attributes": {
"slug": "voluptatem-magni-itaque-in",
"description": "Nemo fuga architecto eius.",
"enabled": true,
"position": 1,
"updated_at": "2025-07-21T23:15:23.349-07:00",
"created_at": "2025-07-21T23:15:18.762-07:00",
"kind": "text",
"label": "Voluptatem magni itaque in.",
"shown": [],
"required": []
},
"relationships": {
"options": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
custom_field deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/custom_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "128",
"type": "custom_fields",
"attributes": {
"slug": "voluptatem-magni-itaque-in",
"description": "Nemo fuga architecto eius.",
"enabled": true,
"position": 1,
"updated_at": "2025-07-21T23:15:23.349-07:00",
"created_at": "2025-07-21T23:15:18.762-07:00",
"kind": "text",
"label": "Voluptatem magni itaque in.",
"shown": [],
"required": []
},
"relationships": {
"options": {
"data": []
}
}
}
}